home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 18 / CU Amiga Magazine's Super CD-ROM 18 (1997)(EMAP Images)(GB)[!][issue 1998-01].iso / CUCD / Graphics / MagnifiCAD / ARexx / Request.rexx < prev    next >
OS/2 REXX Batch file  |  1996-11-19  |  489b  |  33 lines

  1. /* 
  2. **  Request.rexx 
  3. **
  4. **  Description: A test of the 'REQUEST' command.
  5. **
  6. **  Written by:  Anders Granli
  7. **
  8. **  Date:        11.10.96
  9. **                 
  10. */
  11.  
  12. OPTIONS RESULTS
  13.  
  14. address 'MAGNIFICAD'
  15.  
  16. MAGNIFICADTOFRONT
  17.  
  18. REQUEST '"Continue?"' '"Would you like to continue?"' 'OK' 'Cancel' '"Maybe..."'
  19. file = RESULT
  20.  
  21. MAGNIFICADTOBACK
  22.  
  23. IF (file=0) THEN
  24.   SAY 'User selected "Cancel"'
  25. ELSE 
  26. IF (file=1) THEN
  27.   SAY 'User selected "OK"'
  28. ELSE
  29. IF (file=2) THEN
  30.   SAY 'User selected "Maybe..."'
  31.  
  32.  
  33.